home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / muds / tf-3.000 / tf-3 / tf3.0a21 / Config < prev    next >
Text File  |  1993-09-28  |  5KB  |  162 lines

  1. ###########################################################################
  2. #  TinyFugue configuration file
  3. ###########################################################################
  4. #  The Build script can usually figure out everything it needs to know
  5. #  about your system, so you probably won't need to edit this file unless
  6. #  you want to change some defaults or enable some optional features.
  7. #  See the README file if you have problems or want to make any changes.
  8. #
  9. #  Just type "Build" to install everything.
  10. #
  11. #  If you edit anything, make sure everything on the right side of an equal
  12. #  sign is enclosed in quotes.  In the instructions, "uncomment" means
  13. #  remove the "#" character from the beginning of the line.
  14. ###########################################################################
  15.  
  16.  
  17. ### Flags.
  18. # This is the place to add flags as instructed by the README file.
  19. # Do not put optimization flags here.
  20.  
  21. FLAGS=''
  22.  
  23.  
  24. ### Terminal Driver.
  25. # The Build script can usually figure this out by itself.  You only need to
  26. # uncomment one of these lines if Build guesses incorrectly.
  27.  
  28. # TTYDRIVER='-DUSE_TERMIOS'
  29. # TTYDRIVER='-DUSE_TERMIO'
  30. # TTYDRIVER='-DUSE_SGTTY'
  31.  
  32.  
  33. ### Terminal Handling.
  34. # This script will assume you want to use termcap unless you uncomment
  35. # one of the lines below.
  36.  
  37. # TERMINAL='-DTERMCAP'
  38. # TERMINAL='-DHARDCODE'
  39. # TERMINAL=' '
  40.  
  41.  
  42. ### Non-Blocking Connect.
  43. # To enable non-blocking connect, uncomment the CONNECT line appropriate
  44. # to your system type.  Note:  nonblocking connect will not work on all
  45. # systems.  See README for details.  To explicitly NOT use nonblocking
  46. # connect, set CONNECT='blocking'.
  47.  
  48. # CONNECT='blocking'
  49. # CONNECT='CONNECT_BSD'
  50. # CONNECT='CONNECT_SVR4'
  51.  
  52.  
  53. ### File Locations.
  54. # Default locations for files are /usr/local/{bin,lib} if writable,
  55. # or $HOME/{bin,lib} if they exist, or $HOME.  To change any file location,
  56. # uncomment and edit the appropriate line below.
  57. # If you don't want the help file, set HELPFILE='/dev/null'.
  58.  
  59. EXE="/usr/local/bin/tf"
  60. TFCONNECT="/usr/local/bin/tf.connect"
  61. TFLIBRARY="/usr/local/lib/tf.library"
  62. HELPFILE="/usr/local/lib/tf.help"
  63.  
  64.  
  65. ### Manual Page.
  66. # Man page will not be installed by default.  To have it installed,
  67. # uncomment and edit the lines below.  Set MANTYPE=nroff if your man
  68. # uses nroff format; set MANTYPE=cat if your man uses pre-formatted
  69. # vt100 "catman" pages.  Default is "cat".
  70.  
  71. MANTYPE='nroff'
  72. MANPAGE='/usr/man/man1/tf.1'
  73.  
  74.  
  75. ### Mail Directory.
  76. # Normally, this Build script can find the mail directory by itself.
  77. # You only need to set this if you keep mail in an unusual place.
  78. # Be sure to include a trailing '/'.
  79. # If your system keeps incoming mail in the recipient's home, see
  80. # the instructions in README.
  81.  
  82. # MAILDIR='/weird/mail/directory/'
  83.  
  84.  
  85. ### Restriction Options.
  86. # For public installation, you may wish to disable certain features of
  87. # TinyFugue.  To do so, uncomment one or more of the RESTRICT lines below.
  88. # If you restrict file access, you should restrict shell access too.
  89.  
  90. # RESTRICT="$RESTRICT -DRESTRICT_SHELL"
  91. # RESTRICT="$RESTRICT -DRESTRICT_FILE"
  92. # RESTRICT="$RESTRICT -DRESTRICT_WORLD"
  93.  
  94.  
  95. ### Random.
  96. # You only need to uncomment this if Build can't find rand() or random().
  97.  
  98. # RAND='-DRANDOM=random -DSRANDOM=srandom'
  99.  
  100.  
  101. ### Compiler.
  102. # Unless you define CC below, Build will use "gcc -g -ansi" if available,
  103. # "cc -g" if not.   Note:  do not add optimization flags here.  Note:  if
  104. # you want to change CCFLAGS, you must uncomment CC also.
  105.  
  106. # CC="cc"
  107. # CCFLAGS="-g"
  108.  
  109.  
  110. ### Optimization.
  111. # If you want compiler optimization, uncomment the next line and add the
  112. # correct flags for your compiler ("-O" for most compilers).  I don't do
  113. # this by default because I want "-g" debugging information.
  114.  
  115. OPT="-O"
  116.  
  117.  
  118. ### POSIX.
  119. # If the compile fails in an #ifdef _POSIX_VERSION block, try uncommenting
  120. # the line below.
  121.  
  122. # POSIX=0
  123.  
  124.  
  125. ### System Type.
  126. # If Build fails because you have an unusual system (or it thinks you do,
  127. # and you really don't), you may need to uncomment one of the lines below.
  128.  
  129. # SYSTEM='WINS'
  130. # SYSTEM='DYNIX_PTX'
  131. # SYSTEM='DOMAIN_OS'
  132. # SYSTEM='other'
  133.  
  134.  
  135. ### Include Directory.
  136. # Uncomment and edit this line if your include files are not in /usr/include.
  137.  
  138. # INCDIR='/weird/include'
  139.  
  140.  
  141. ### C Library.
  142. # Uncomment and edit this line if Build can't find your C library.
  143.  
  144. # LIBC='/weird/libc.a'
  145.  
  146.  
  147. ### Other Compiler Libraries.
  148. # This is the place to add extra libraries as described in README
  149. # if your linker can't resolve an external reference.
  150.  
  151. LIBS=''
  152.  
  153.  
  154. ### Make Program.
  155.  
  156. MAKE='make'
  157.  
  158.